home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / jikes.lha / jikes-1.11 / src / jcl / jcl_int.h < prev    next >
C/C++ Source or Header  |  1999-11-04  |  623b  |  22 lines

  1. // $Id: jcl_int.h,v 1.1 1999/11/04 18:48:03 shields Exp $
  2. //
  3. // This software is subject to the terms of the IBM Jikes Compiler
  4. // License Agreement available at the following URL:
  5. // http://www.ibm.com/research/jikes.
  6. // Copyright (C) 1996, 1998, International Business Machines Corporation
  7. // and others.  All Rights Reserved.
  8. // You must accept the terms of that agreement to use this software.
  9. //
  10. #ifndef jcl_int_INCLUDED
  11. #define jcl_int_INCLUDED
  12.  
  13. typedef unsigned char  u1;
  14. typedef unsigned short u2;
  15. typedef unsigned int   u4;
  16.  
  17. typedef signed int     i4;
  18. typedef signed short   i2;
  19. typedef signed char    i1;
  20.  
  21. #endif
  22.